InvalidTargetException constructor

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

Implementation

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