FFRazorpaySettings constructor

FFRazorpaySettings({
  1. FFRazorpayCredentials? testCredentials,
  2. FFRazorpayCredentials? prodCredentials,
  3. String? businessName,
  4. 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;
}