newCommon static method

Future<void> newCommon(
  1. String commonName
)

this function will =>

  1. create file in common folder
  2. export this file into commons.dart file

Implementation

static Future<void> newCommon(String commonName) async {
  return _createNew(commonName, _commonFolder);
}