copyWith method

MSitefMenuParams copyWith({
  1. String? ipSitef,
  2. String? storeId,
  3. String? terminalId,
  4. String? paramsAdd,
  5. String? companyDocument,
  6. String? comExternal,
  7. String? isDoubleValidation,
  8. String? otp,
  9. String? enabledTransactions,
  10. String? automationDocument,
  11. 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,
  );
}