FlutterWidgetPropertyEditorKind.fromJson constructor
Implementation
factory FlutterWidgetPropertyEditorKind.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
if (json is String) {
try {
return FlutterWidgetPropertyEditorKind(json);
} catch (_) {
// Fall through
}
}
throw jsonDecoder.mismatch(
jsonPath, 'FlutterWidgetPropertyEditorKind', json);
}