getAppName function

String getAppName(
  1. String path
)

no-doc

Implementation

String getAppName(String path) {
  final name = path.split(separator).last;
  return (name.split('.')..removeLast()).join('.');
}