toFollowPoint method
Implementation
FollowPoint toFollowPoint() {
switch (this) {
case 'END':
return FollowPoint.end;
case 'START':
return FollowPoint.start;
}
throw Exception('$this is not known in enum FollowPoint');
}
FollowPoint toFollowPoint() {
switch (this) {
case 'END':
return FollowPoint.end;
case 'START':
return FollowPoint.start;
}
throw Exception('$this is not known in enum FollowPoint');
}