generateApiCallCode static method
add api call
Implementation
static Future<void> generateApiCallCode({
required String apiMethod,
required String apiEndPoint,
required String apiName,
}) async =>
await AddAPI().generateApiCallCode(
apiMethod: apiMethod,
apiEndPoint: apiEndPoint,
apiName: apiName,
);