ErrorMessage constructor

const ErrorMessage({
  1. @Default.new(false) bool status,
  2. @Default.new("") String? message,
})

Implementation

const factory ErrorMessage({
  @Default(false) bool status,
  @Default("") String? message,
}) = _ErrorMessage;