从DART 2.6开始,您可以在类上定义类别(包括枚举)。 enum Cat { black, white } extension CatExtension on Cat { String get name { switch (this) ...
確定! 回上一頁