addAccount method

  1. @override
Future<void> addAccount(
  1. Uint8List newAccountPrivateKey, {
  2. bool allowReassignInboxId = false,
})
override

Implementation

@override
Future<void> addAccount(Uint8List newAccountPrivateKey, {bool allowReassignInboxId = false}) async {
  await methodChannel.invokeMethod('addAccount', {
    'newAccountPrivateKey': newAccountPrivateKey,
    'allowReassignInboxId': allowReassignInboxId,
  });
}