copyWith method
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);
}