call static method
Implementation
static Future<ApiCallResponse> call({
String? platform = '',
String? tenant = '',
String? authorization = '',
String? baseUrl = '',
String? search = '',
}) {
return ApiManager.instance.makeApiCall(
callName: 'myBeneficiaries',
apiUrl:
'${baseUrl}api/blayzPay/account/transfer/beneficiary?search=${search}',
callType: ApiCallType.GET,
headers: {
'accept': 'application/json',
'platform': '${platform}',
'tenant': '${tenant}',
'Authorization': '${authorization}',
},
params: {},
returnBody: true,
encodeBodyUtf8: false,
decodeUtf8: false,
cache: true,
);
}