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