InvalidClientAuthStatusException constructor

InvalidClientAuthStatusException({
  1. String? type,
  2. String? message,
})

Implementation

InvalidClientAuthStatusException({String? type, String? message})
    : super(
          type: type,
          code: 'InvalidClientAuthStatusException',
          message: message);