fromJson static method

PortableRegistryV14 fromJson(
  1. Map<String, dynamic> map
)

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));