copyWith method
Implementation
RegisterTTP copyWith({
String? softwareType,
String? storeId,
String? linkedTerminalId,
String? registrationCodeId,
}) {
return RegisterTTP(
softwareType: softwareType ?? this.softwareType,
storeId: storeId ?? this.storeId,
linkedTerminalId: linkedTerminalId ?? this.linkedTerminalId,
registrationCodeId: registrationCodeId ?? this.registrationCodeId,
);
}