CID.fromJson constructor

CID.fromJson(
  1. Map<String, dynamic> json
)

Returns the new instance of CID based on json.

Implementation

factory CID.fromJson(final Map<String, dynamic> json) =>
    CID.parse(json[_defaultJsonKey]);