InvalidResourceTypeException constructor

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

Implementation

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