| Index: lib/crypto.dart
|
| diff --git a/lib/crypto.dart b/lib/crypto.dart
|
| index eb2905a7e2dfb10abf6d28ba5b8ed34c20a37835..5e85a0a8dc8217dd72f471cff36399e2caa1d9a4 100644
|
| --- a/lib/crypto.dart
|
| +++ b/lib/crypto.dart
|
| @@ -87,14 +87,10 @@ class CryptoUtils {
|
| *
|
| */
|
| static String bytesToBase64(List<int> bytes,
|
| - {bool urlSafe : false,
|
| - bool addLineSeparator : false}) {
|
| - return _CryptoUtils.bytesToBase64(bytes,
|
| - urlSafe,
|
| - addLineSeparator);
|
| + {bool urlSafe: false, bool addLineSeparator: false}) {
|
| + return _CryptoUtils.bytesToBase64(bytes, urlSafe, addLineSeparator);
|
| }
|
|
|
| -
|
| /**
|
| * Converts a Base 64 encoded String into list of bytes.
|
| *
|
|
|