copyWith method
Implementation
StoneTechCredentialsModel copyWith({
String? stoneCode,
String? qrCodeAuthorization,
String? qrCodeProviderid,
String? appName,
}) {
return StoneTechCredentialsModel(
stoneCode: stoneCode ?? this.stoneCode,
qrCodeAuthorization: qrCodeAuthorization ?? this.qrCodeAuthorization,
qrCodeProviderid: qrCodeProviderid ?? this.qrCodeProviderid,
appName: appName ?? this.appName,
);
}