ErrorMessageResponse constructor

ErrorMessageResponse({
  1. required String id,
  2. required String text,
})

Implementation

ErrorMessageResponse({
  required super.id,
  required this.text,
});