copyWith method

WebApiModulesSettingsNumberFormatNumberFormat copyWith({
  1. String? numberFormatId,
  2. String? numberFormat,
  3. String? mask,
  4. String? auditNote,
  5. String? recordTitle,
  6. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  7. List<FwStandardDataFwCustomValue>? custom,
  8. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
})

Implementation

WebApiModulesSettingsNumberFormatNumberFormat copyWith(
    {String? numberFormatId,
    String? numberFormat,
    String? mask,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes}) {
  return WebApiModulesSettingsNumberFormatNumberFormat(
      numberFormatId: numberFormatId ?? this.numberFormatId,
      numberFormat: numberFormat ?? this.numberFormat,
      mask: mask ?? this.mask,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes);
}