copyWith method
MSitefMenuParams
copyWith(
{ - String? ipSitef,
- String? storeId,
- String? terminalId,
- String? paramsAdd,
- String? companyDocument,
- String? comExternal,
- String? isDoubleValidation,
- String? otp,
- String? enabledTransactions,
- String? automationDocument,
- String? tokenRegistroTls,
})
Implementation
MSitefMenuParams copyWith({
String? ipSitef,
String? storeId,
String? terminalId,
String? paramsAdd,
String? companyDocument,
String? comExternal,
String? isDoubleValidation,
String? otp,
String? enabledTransactions,
String? automationDocument,
String? tokenRegistroTls,
}) {
return MSitefMenuParams(
ipSitef: ipSitef ?? this.ipSitef,
storeId: storeId ?? this.storeId,
terminalId: terminalId ?? this.terminalId,
paramsAdd: paramsAdd ?? this.paramsAdd,
companyDocument: companyDocument ?? this.companyDocument,
comExternal: comExternal ?? this.comExternal,
isDoubleValidation: isDoubleValidation ?? this.isDoubleValidation,
otp: otp ?? this.otp,
enabledTransactions: enabledTransactions ?? this.enabledTransactions,
automationDocument: automationDocument ?? this.automationDocument,
tokenRegistroTls: tokenRegistroTls ?? this.tokenRegistroTls,
);
}