enume 1.1.0 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.
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);
}