copyWith method

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

Implementation

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