copyWith method
Returns a copy of this FSizes with the given properties replaced.
Implementation
@useResult
FSizes copyWith({
({double xs, double sm, double md, double lg})? field,
double? item,
double? tile,
double? calendar,
}) => FSizes(
field: field ?? this.field,
item: item ?? this.item,
tile: tile ?? this.tile,
calendar: calendar ?? this.calendar,
);