unRegisterAccount method

Future<void> unRegisterAccount(
  1. int accId
)

Unregister account specified by its id

Implementation

Future<void> unRegisterAccount(int accId) {
  return _platform.unRegisterAccount(accId);
}