copyWith method
Makes a deep copy of this Meta
instance.
Implementation
Meta copyWith({
DateTime? lastUpdated,
String? versionId,
String? source,
FixedList<String>? profile,
FixedList<Tag>? tag,
}) =>
Meta(
lastUpdated: lastUpdated ?? this.lastUpdated,
versionId: versionId ?? this.versionId,
source: source ?? this.source,
profile: profile ?? this.profile,
tag: tag ?? this.tag,
);