| Index: lib/src/crypto_utils.dart
|
| diff --git a/lib/src/crypto_utils.dart b/lib/src/crypto_utils.dart
|
| index 7111d6f4b593701cd9374db1a662b75fbdbd0276..42871db31b7bf22ee32d587b42d62960fbd8776d 100644
|
| --- a/lib/src/crypto_utils.dart
|
| +++ b/lib/src/crypto_utils.dart
|
| @@ -14,11 +14,9 @@ abstract class _CryptoUtils {
|
| }
|
|
|
| static String bytesToBase64(List<int> bytes,
|
| - [bool urlSafe = false,
|
| - bool addLineSeparator = false]) {
|
| + [bool urlSafe = false, bool addLineSeparator = false]) {
|
| return BASE64.encode(bytes,
|
| - urlSafe: urlSafe,
|
| - addLineSeparator: addLineSeparator);
|
| + urlSafe: urlSafe, addLineSeparator: addLineSeparator);
|
| }
|
|
|
| static List<int> base64StringToBytes(String input) {
|
|
|