feat: update dashboard
This commit is contained in:
+2
-3
@@ -512,12 +512,11 @@ class _$SuccessImpl implements _Success {
|
||||
return identical(this, other) ||
|
||||
(other.runtimeType == runtimeType &&
|
||||
other is _$SuccessImpl &&
|
||||
const DeepCollectionEquality().equals(other.printer, printer));
|
||||
(identical(other.printer, printer) || other.printer == printer));
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode =>
|
||||
Object.hash(runtimeType, const DeepCollectionEquality().hash(printer));
|
||||
int get hashCode => Object.hash(runtimeType, printer);
|
||||
|
||||
/// Create a copy of GetPrinterTicketState
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
|
||||
Reference in New Issue
Block a user