call method
Implementation
Future<ApiCallResponse> call({
String? serviceCode = '',
String? customerNo = '',
String? tenant = '',
String? token = '',
String? baseUrl = '',
String? platform = '',
}) {
return ApiManager.instance.makeApiCall(
callName: 'validateElectricityCustomerNumber',
apiUrl:
'${baseUrl}api/blayzPay/bills/electricity/${serviceCode}/${customerNo}',
callType: ApiCallType.GET,
headers: {
...BlayzPayAPIGroup.headers,
'tenant': '${tenant}',
'Authorization': '${token}',
'platform': '${platform}',
},
params: {},
returnBody: true,
encodeBodyUtf8: false,
decodeUtf8: false,
cache: false,
);
}