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