args property

Map<String?, dynamic> args

Function parse arguments following the schema @returns A Map<String, dynamic> object with the parsed arguments

Implementation

Map<String?, dynamic> get args {
  if (options == null) {
    // If there's no schema found
    return _anonymousParse();
  } else {
    // If the parse schema is defined
    return _parseWithOptions();
  }
}