myApiFunction static method

Future<String> myApiFunction(
  1. String _base64String
)

Implementation

static Future<String> myApiFunction(String _base64String) async {
  // Make the API call with the provided argument and return the result
  return await callSkinAPI(_base64String);
}