enum_to_string 1.0.2 copy "enum_to_string: ^1.0.2" to clipboard
enum_to_string: ^1.0.2 copied to clipboard

outdated

Better conversion of ENUMs to string. Dart has annoying EnumName.ValueName syntax when calling enum.toString, this package fixes that.

example/main.dart

import 'package:enum_to_string/enum_to_string.dart';

enum TestEnum {ValueOne, Value2, valueThree}

main(){
    EnumToString.parse(TestEnum.ValueOne); //ValueOne
    EnumToString.parse(TestEnum.Value2); //Value2
    EnumToString.parse(TestEnum.valueThree); //valueThree

    EnumToString.parseCamelCase(TestEnum.ValueOne); //Value one
    EnumToString.parseCamelCase(TestEnum.Value2); //Value 2
    EnumToString.parseCamelCase(TestEnum.valueThree); //Value three
}
322
likes
0
pub points
98%
popularity

Publisher

unverified uploader

Better conversion of ENUMs to string. Dart has annoying EnumName.ValueName syntax when calling enum.toString, this package fixes that.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on enum_to_string