copyWith method
WebApiModulesUtilitiesGLDistributionGLDistribution
copyWith({
- String? date,
- String? glAccountNo,
- String? glAccountDescription,
- double? debit,
- double? credit,
- String? glAccountId,
- String? groupHeading,
- int? orderBy,
- int? groupHeadingOrder,
- String? currencyId,
- String? currencyCode,
- String? currency,
- String? currencySymbol,
- String? officeLocationId,
- String? officeLocation,
- String? auditNote,
- String? recordTitle,
- dynamic urlIdentifier,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - FwStandardBusinessLogicFwBusinessLogic? original,
- List<
FwStandardDataFwTranslatedValue> ? translation, - bool? hasImport,
- String? createdByUserId,
- String? createdByUserName,
- String? createdDateTime,
- String? modifiedByUserId,
- String? modifiedByUserName,
- String? modifiedDateTime,
Implementation
WebApiModulesUtilitiesGLDistributionGLDistribution copyWith({
String? date,
String? glAccountNo,
String? glAccountDescription,
double? debit,
double? credit,
String? glAccountId,
String? groupHeading,
int? orderBy,
int? groupHeadingOrder,
String? currencyId,
String? currencyCode,
String? currency,
String? currencySymbol,
String? officeLocationId,
String? officeLocation,
String? auditNote,
String? recordTitle,
dynamic urlIdentifier,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
FwStandardBusinessLogicFwBusinessLogic? original,
List<FwStandardDataFwTranslatedValue>? translation,
bool? hasImport,
String? createdByUserId,
String? createdByUserName,
String? createdDateTime,
String? modifiedByUserId,
String? modifiedByUserName,
String? modifiedDateTime,
}) {
return WebApiModulesUtilitiesGLDistributionGLDistribution(
date: date ?? this.date,
glAccountNo: glAccountNo ?? this.glAccountNo,
glAccountDescription: glAccountDescription ?? this.glAccountDescription,
debit: debit ?? this.debit,
credit: credit ?? this.credit,
glAccountId: glAccountId ?? this.glAccountId,
groupHeading: groupHeading ?? this.groupHeading,
orderBy: orderBy ?? this.orderBy,
groupHeadingOrder: groupHeadingOrder ?? this.groupHeadingOrder,
currencyId: currencyId ?? this.currencyId,
currencyCode: currencyCode ?? this.currencyCode,
currency: currency ?? this.currency,
currencySymbol: currencySymbol ?? this.currencySymbol,
officeLocationId: officeLocationId ?? this.officeLocationId,
officeLocation: officeLocation ?? this.officeLocation,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
urlIdentifier: urlIdentifier ?? this.urlIdentifier,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
original: original ?? this.original,
translation: translation ?? this.translation,
hasImport: hasImport ?? this.hasImport,
createdByUserId: createdByUserId ?? this.createdByUserId,
createdByUserName: createdByUserName ?? this.createdByUserName,
createdDateTime: createdDateTime ?? this.createdDateTime,
modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
);
}