UnauthorizedException constructor

const UnauthorizedException({
  1. String message = 'The requested account and/or method has not been authorized by the user.',
})

Constructor.

Implementation

const UnauthorizedException({
  String message =
      'The requested account and/or method has not been authorized by the user.',
}) : super(4100, message, null);