onDeny function

Future<NEResult<void>> onDeny()

Implementation

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