fromJson static method
Creates Class Object from Json
Implementation
static PortableRegistryV14 fromJson(Map<String, dynamic> map) =>
PortableRegistryV14(
types: (map['types'] as List)
.map((value) => PortableTypeV14.fromJson(value))
.toList(growable: false));