ErrorMessage constructor

ErrorMessage({
  1. required String message,
  2. required String type,
  3. String? code,
  4. String? param,
})

Implementation

ErrorMessage({required this.message, required this.type, this.code, this.param});