ParameterPatternMismatchException constructor

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

Implementation

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