convert_extensions 0.1.0 convert_extensions: ^0.1.0 copied to clipboard
Common convert methods exposed as static extensions method from the Dart core library and the convert package. Base64, ASCII, UTF8, Latin1, JSON, and more.
example/convert_extensions_example.dart
import 'package:convert_extensions/convert_extensions.dart';
void main() => print('Y29udmVydA=='.base64Decoded.utf8Decoded);