FundLimitCheck method
Implementation
Future<CheckfundLimitModel> FundLimitCheck(BuildContext context, String jsonBody) async {
var response = await sdkapiservice.postData(context, jsonBody, AppUrl.fundLimit_Check,false);
return CheckfundLimitModel.fromJson(response);
}