toJson method

Map<String, dynamic> toJson()

Creates Map from Class Object

Implementation

Map<String, dynamic> toJson() => {
      'types': types
          .map((PortableTypeV14 value) => value.toJson())
          .toList(growable: false),
    };