deserialize static method
Deserializes the finder from JSON generated by serialize.
Implementation
static ByTooltipMessage deserialize(Map<String, String> json, {String? path}) {
final String? text = json['text'];
if (text == null) {
throw ArgumentError.notNull(path == null ? 'text' : '$path.text');
}
return ByTooltipMessage(text);
}