ErrorModel constructor

ErrorModel({
  1. required String title,
  2. required String message,
  3. required String button,
})

Implementation

ErrorModel({
  required this.title,
  required this.message,
  required this.button,
});