copyWith method
Implementation
Note copyWith({String? note, PropertyMetadata? metadata}) {
return Note(note: note ?? this.note, metadata: metadata ?? this.metadata);
}
Note copyWith({String? note, PropertyMetadata? metadata}) {
return Note(note: note ?? this.note, metadata: metadata ?? this.metadata);
}