copyWith method
WebApiModulesBillingBankAccountBankAccount
copyWith({
- int? bankAccountId,
- String? accountName,
- String? checkNumber,
- String? officeLocationId,
- String? location,
- String? currencyId,
- String? currency,
- String? currencyCode,
- String? currencySymbol,
- bool? inactive,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes,
Implementation
WebApiModulesBillingBankAccountBankAccount copyWith(
{int? bankAccountId,
String? accountName,
String? checkNumber,
String? officeLocationId,
String? location,
String? currencyId,
String? currency,
String? currencyCode,
String? currencySymbol,
bool? inactive,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes}) {
return WebApiModulesBillingBankAccountBankAccount(
bankAccountId: bankAccountId ?? this.bankAccountId,
accountName: accountName ?? this.accountName,
checkNumber: checkNumber ?? this.checkNumber,
officeLocationId: officeLocationId ?? this.officeLocationId,
location: location ?? this.location,
currencyId: currencyId ?? this.currencyId,
currency: currency ?? this.currency,
currencyCode: currencyCode ?? this.currencyCode,
currencySymbol: currencySymbol ?? this.currencySymbol,
inactive: inactive ?? this.inactive,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes);
}