FFRazorpaySettings constructor
FFRazorpaySettings({
- FFRazorpayCredentials? testCredentials,
- FFRazorpayCredentials? prodCredentials,
- String? businessName,
- bool? isProduction,
Implementation
factory FFRazorpaySettings({
FFRazorpayCredentials? testCredentials,
FFRazorpayCredentials? prodCredentials,
$core.String? businessName,
$core.bool? isProduction,
}) {
final result = create();
if (testCredentials != null) result.testCredentials = testCredentials;
if (prodCredentials != null) result.prodCredentials = prodCredentials;
if (businessName != null) result.businessName = businessName;
if (isProduction != null) result.isProduction = isProduction;
return result;
}