| Index: lib/src/base64.dart
|
| diff --git a/lib/src/base64.dart b/lib/src/base64.dart
|
| index 1360638afb04ffd7de2c69ce600ab76bbb65d19e..ad0d8bc14831f6da62d08d55681a87eea8462452 100644
|
| --- a/lib/src/base64.dart
|
| +++ b/lib/src/base64.dart
|
| @@ -2,7 +2,10 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -part of crypto;
|
| +library crypto.base64;
|
| +
|
| +import 'dart:convert';
|
| +import 'dart:typed_data';
|
|
|
| const Base64Codec BASE64 = const Base64Codec();
|
|
|
|
|