fromJson static method

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

Creates Class Object from Json

Implementation

static PortableTypeV14 fromJson(Map<String, dynamic> map) => PortableTypeV14(
      id: map['id'],
      type: Si1Type.fromJson(map['type']),
    );