value property
String?
get
value
Implementation
String? get value {
switch (this) {
case JourneyMode.NORMAL:
return null;
case JourneyMode.MULTI_PDF:
return "multi_pdf";
case JourneyMode.MULTI_BANKING:
return "multi_banking";
}
}