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