onDeny function

Future<NEResult<void>> onDeny()

Implementation

Future<NEResult<void>> onDeny() {
  return Future.sync(() => NEResult(
        code: RoomErrorCode.failed,
        msg: NERoomSDKStrings.apiCallTooFrequent,
      ));
}