CardGeneration method

Future<RuPayCardGenerationResModel> CardGeneration(
  1. BuildContext context,
  2. String jsonBody
)

Implementation

Future<RuPayCardGenerationResModel> CardGeneration(BuildContext context, String jsonBody) async {
  var response = await sdkapiservice.postData(context, jsonBody, AppUrl.TA_Oneapp_RuPayCardGenerationRequest,false);
  return RuPayCardGenerationResModel.fromJson(response);
}