Error constructor

const Error({
  1. required String title,
  2. required String message,
})

Implementation

const Error({
  required this.title,
  required this.message,
});