copyWith method
ConditionBreakpoint<T>
copyWith({
- DeviceScreen? screenType,
- Conditional? conditional,
- T? value,
- double? breakpoint,
Implementation
@override
ConditionBreakpoint<T> copyWith({
DeviceScreen? screenType,
Conditional? conditional,
T? value,
double? breakpoint,
}) =>
ConditionBreakpoint<T>._(
screenType: screenType ?? this.screenType,
conditional: conditional ?? this.conditional,
value: value ?? this.value,
breakpoint: breakpoint ?? this.breakpoint,
);