JsWallet constructor

JsWallet({
  1. required String? mnemonicPhrase,
  2. required String bech32Address,
  3. required String b256Address,
  4. required String privateKey,
  5. required String networkUrl,
})

Implementation

JsWallet(
    {required this.mnemonicPhrase,
    required this.bech32Address,
    required this.b256Address,
    required this.privateKey,
    required this.networkUrl});