copyWith method
Creates a copy with updated values.
Implementation
ListMeta copyWith({
String? type,
String? marker,
int? startNumber,
}) {
return ListMeta(
type: type ?? this.type,
marker: marker ?? this.marker,
startNumber: startNumber ?? this.startNumber,
);
}