copyWith method
WebApiModulesSettingsCurrencyExchangeRateCurrencyExchangeRate
copyWith({
- String? currencyExchangeRateId,
- String? asOfDate,
- String? fromCurrencyId,
- String? importDate,
- double? exchangeRate,
- String? toCurrencyId,
- String? fromCurrencyCode,
- String? fromCurrency,
- String? fromCurrencySymbol,
- String? toCurrencyCode,
- String? toCurrency,
- String? toCurrencySymbol,
- bool? inactive,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes,
Implementation
WebApiModulesSettingsCurrencyExchangeRateCurrencyExchangeRate copyWith(
{String? currencyExchangeRateId,
String? asOfDate,
String? fromCurrencyId,
String? importDate,
double? exchangeRate,
String? toCurrencyId,
String? fromCurrencyCode,
String? fromCurrency,
String? fromCurrencySymbol,
String? toCurrencyCode,
String? toCurrency,
String? toCurrencySymbol,
bool? inactive,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes}) {
return WebApiModulesSettingsCurrencyExchangeRateCurrencyExchangeRate(
currencyExchangeRateId:
currencyExchangeRateId ?? this.currencyExchangeRateId,
asOfDate: asOfDate ?? this.asOfDate,
fromCurrencyId: fromCurrencyId ?? this.fromCurrencyId,
importDate: importDate ?? this.importDate,
exchangeRate: exchangeRate ?? this.exchangeRate,
toCurrencyId: toCurrencyId ?? this.toCurrencyId,
fromCurrencyCode: fromCurrencyCode ?? this.fromCurrencyCode,
fromCurrency: fromCurrency ?? this.fromCurrency,
fromCurrencySymbol: fromCurrencySymbol ?? this.fromCurrencySymbol,
toCurrencyCode: toCurrencyCode ?? this.toCurrencyCode,
toCurrency: toCurrency ?? this.toCurrency,
toCurrencySymbol: toCurrencySymbol ?? this.toCurrencySymbol,
inactive: inactive ?? this.inactive,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes);
}