copyWith method
Implementation
FieldLastUsed copyWith({FieldLastUsedType? type, DateTime? value}) {
return FieldLastUsed(
type: type ?? this.type,
value: value ?? this.value,
);
}
FieldLastUsed copyWith({FieldLastUsedType? type, DateTime? value}) {
return FieldLastUsed(
type: type ?? this.type,
value: value ?? this.value,
);
}