InvalidDocument constructor

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

Implementation

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