payment
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user