This commit is contained in:
efrilm
2025-10-30 16:35:47 +07:00
parent adc90a90a0
commit b335102677
20 changed files with 1591 additions and 79 deletions
@@ -1500,6 +1500,8 @@ abstract class _$$OrderAddedItemsImplCopyWith<$Res> {
) = __$$OrderAddedItemsImplCopyWithImpl<$Res>;
@useResult
$Res call({Order? order});
$OrderCopyWith<$Res>? get order;
}
/// @nodoc
@@ -1525,6 +1527,20 @@ class __$$OrderAddedItemsImplCopyWithImpl<$Res>
),
);
}
/// Create a copy of CheckoutFormEvent
/// with the given fields replaced by the non-null parameter values.
@override
@pragma('vm:prefer-inline')
$OrderCopyWith<$Res>? get order {
if (_value.order == null) {
return null;
}
return $OrderCopyWith<$Res>(_value.order!, (value) {
return _then(_value.copyWith(order: value));
});
}
}
/// @nodoc
@@ -1720,6 +1736,7 @@ abstract class $CheckoutFormStateCopyWith<$Res> {
bool isLoading,
});
$OrderCopyWith<$Res>? get orderAdded;
$TableCopyWith<$Res>? get table;
}
@@ -1811,6 +1828,20 @@ class _$CheckoutFormStateCopyWithImpl<$Res, $Val extends CheckoutFormState>
);
}
/// Create a copy of CheckoutFormState
/// with the given fields replaced by the non-null parameter values.
@override
@pragma('vm:prefer-inline')
$OrderCopyWith<$Res>? get orderAdded {
if (_value.orderAdded == null) {
return null;
}
return $OrderCopyWith<$Res>(_value.orderAdded!, (value) {
return _then(_value.copyWith(orderAdded: value) as $Val);
});
}
/// Create a copy of CheckoutFormState
/// with the given fields replaced by the non-null parameter values.
@override
@@ -1851,6 +1882,8 @@ abstract class _$$CheckoutFormStateImplCopyWith<$Res>
bool isLoading,
});
@override
$OrderCopyWith<$Res>? get orderAdded;
@override
$TableCopyWith<$Res>? get table;
}