init static method

dynamic init(
  1. List<String> args
)

There are only two commands, "-h" and "-create", remembering that always after "-create"

"dart base_archive_name.dart -create "

Implementation

static init(List<String> args){
    if(args.first == "-create"){
      CreateFiles.meet();
    }
    if(args.first == "-h"){
      CreateFiles.help();
    }
  }