Error constructor

Error({
  1. required String type,
  2. required String help,
  3. required dynamic description,
})

Implementation

Error({
  required this.type,
  required this.help,
  required this.description,
});