appendAccountWithType method

void appendAccountWithType({
  1. required String account,
  2. required String accountType,
})

Implementation

void appendAccountWithType(
    {required String account, required String accountType}) {
  _channel.invokeMethod(
      'appendAccount', {'account': account, 'accountType': accountType});
}