acceptRequest method

  1. @override
Future<bool> acceptRequest({
  1. required Map notification,
})

Accepts an auth request from auth0.

Implementation

@override
Future<bool> acceptRequest({required Map notification}) async {
  final result = await methodChannel.invokeMethod<bool>('acceptRequest', {
    'forDomain': params.tenantUrl,
    'notification': notification,
  });
  return result ?? false;
}