enume 1.1.0 copy "enume: ^1.1.0" to clipboard
enume: ^1.1.0 copied to clipboard

Enume - collection of useful enum extensions for dart. Like a Name-Method and TypedEnums for the ability to assign specific values each of the enumerated types.

example/lib/example.dart

import 'package:example/animal.dart';
import 'package:example/http_status.dart';

void main() {
  // asString
  var animal = Animal.fish;
  print(animal.name);

  var status = HttpStatus.ok;
  print(status.value);

  print(status.code);
}
8
likes
120
pub points
43%
popularity

Publisher

unverified uploader

Enume - collection of useful enum extensions for dart. Like a Name-Method and TypedEnums for the ability to assign specific values each of the enumerated types.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on enume