copyWith method

Meta copyWith({
  1. String? name,
  2. String? officialName,
  3. double? limit,
})

Implementation

Meta copyWith({String? name, String? officialName, double? limit}) {
  return Meta(
      name: name ?? this.name,
      officialName: officialName ?? this.officialName,
      limit: limit ?? this.limit);
}