UiError constructor

UiError({
  1. required String code,
  2. required String message,
  3. String? path,
  4. Map<String, dynamic>? context,
})

Implementation

UiError({
  required this.code,
  required this.message,
  this.path,
  this.context,
});