delAccountWithType method

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

Implementation

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