call static method

Future<ApiCallResponse> call({
  1. String? platform = '',
  2. String? tenant = '',
  3. String? authorization = '',
  4. String? baseUrl = '',
  5. String? transactionId = '',
  6. int? tenor,
})

Implementation

static Future<ApiCallResponse> call({
  String? platform = '',
  String? tenant = '',
  String? authorization = '',
  String? baseUrl = '',
  String? transactionId = '',
  int? tenor,
}) {
  final body = '''
{
"transactionId": "${transactionId}",
"tenor": ${tenor}
}''';
  return ApiManager.instance.makeApiCall(
    callName: 'loanSummary',
    apiUrl: '${baseUrl}api/blayzPay/loanApplication/summary',
    callType: ApiCallType.POST,
    headers: {
      'accept': 'application/json',
      'platform': '${platform}',
      'tenant': '${tenant}',
      'Authorization': '${authorization}',
    },
    params: {},
    body: body,
    bodyType: BodyType.JSON,
    returnBody: true,
    encodeBodyUtf8: false,
    decodeUtf8: false,
    cache: false,
  );
}