assetPicker function

String assetPicker(
  1. String path
)

Implementation

String assetPicker(String path) {
  String? modelPath = "";
  _getApplicationPath(path).then((s) {
    modelPath = s;
  });
  return modelPath ?? "";
}