ItemNotFoundException constructor
ItemNotFoundException({})
Implementation
ItemNotFoundException({
this.value,
String? message,
Map<String, dynamic>? details,
String? name,
}) : super._(
message ?? "No matching ${name ?? 'item'} found for the given value.",
details: {"value": value},
);