copyWith method

Meta copyWith({
  1. DateTime? lastUpdated,
  2. String? versionId,
  3. String? source,
  4. FixedList<String>? profile,
  5. FixedList<Tag>? tag,
})

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,
    );