• The name should be all lowercase, with underscores to separate words, just_likethis. Use only basic Latin letters and Arabic digits: [a-z0-9]. Also, make sure the name is a valid Dart identifier—that it doesn’t start with digits and isn’t a reserved word.
  • dart package name 必须全部小写命名,由数字、小写字母、下划线组成,对应的正则表达式为 [a-z0-9_]
  • 更多参考 https://dart.dev/tools/pub/pubspec#name