darkbio_crypto 0.1.1
darkbio_crypto: ^0.1.1 copied to clipboard
Cryptography wrappers and primitives
example/lib/main.dart
import 'package:darkbio_crypto/darkbio_crypto.dart' as darkbio_crypto;
import 'package:flutter/material.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await darkbio_crypto.init();
runApp(const MaterialApp(home: Scaffold()));
}