name property
String
get
name
Returns lowercase string representation
Example:
HttpMethod.GET.name // returns "get"
Implementation
String get name => value.toLowerCase();
Returns lowercase string representation
Example:
HttpMethod.GET.name // returns "get"
String get name => value.toLowerCase();