fromJson static method
Implementation
static VisitResult fromJson(String value) {
final normalized = value == 'continue' ? 'continue_' : value;
return VisitResult.values.firstWhere((e) => e.name == normalized);
}
static VisitResult fromJson(String value) {
final normalized = value == 'continue' ? 'continue_' : value;
return VisitResult.values.firstWhere((e) => e.name == normalized);
}