deserialize static method

ByType deserialize(
  1. Map<String, String> json
)

Deserializes the finder from JSON generated by serialize.

Implementation

static ByType deserialize(Map<String, String> json) {
  return ByType(json['type']!);
}