toValue method
Implementation
String toValue() {
switch (this) {
case Format.csv:
return 'CSV';
case Format.json:
return 'JSON';
}
}
String toValue() {
switch (this) {
case Format.csv:
return 'CSV';
case Format.json:
return 'JSON';
}
}