copyWith method
Implementation
GetPartitionsModel copyWith({
bool? ok,
List<PartitionsModel>? partitions,
}) {
return GetPartitionsModel(
ok: ok ?? this.ok,
partitions: partitions ?? this.partitions,
);
}
GetPartitionsModel copyWith({
bool? ok,
List<PartitionsModel>? partitions,
}) {
return GetPartitionsModel(
ok: ok ?? this.ok,
partitions: partitions ?? this.partitions,
);
}