userDelete method

void userDelete()

Deletes the user profile from TA server.

This operation is irreversible. The data will be remained.

Implementation

void userDelete() {
  _channel
      .invokeMethod('userDelete', <String, dynamic>{'appId': this._appId});
}