InvalidItemContentException constructor

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

Implementation

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