Wallet HD Derivation Kit

Dart

dart pub add wallet_hd_derivation_kit
final result = deriveAddress(
  source: {'mnemonic': Platform.environment['WALLET_MNEMONIC']!},
  chain: 'bitcoin-cash',
);
print(result['address']);

The library is pure Dart and shares the same public API with the Flutter package. Runnable example.