copyWith method

Implementation

MerchantInformationLanguageTemplateModel copyWith({
  String? tag,
  String? length,
  MerchantInformationLanguageTemplateValue? value,
}) =>
    MerchantInformationLanguageTemplateModel(
      tag: tag ?? this.tag,
      length: length ?? this.length,
      value: value ?? this.value,
    );