copyWith method

FieldLastUsed copyWith({
  1. FieldLastUsedType? type,
  2. DateTime? value,
})

Implementation

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