PAuthOptions constructor

PAuthOptions({
  1. PAuthType authType = PAuthType.both,
  2. required PUserType userType,
  3. required dynamic callback(
    1. bool permissionStatus
    ),
})

Implementation

PAuthOptions({
  this.authType = PAuthType.both,
  required this.userType,
  required this.callback,
});