Id.fromJson constructor

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

Implementation

factory Id.fromJson(Map<String, dynamic> json) => Id(
      kind: json['kind'] as String?,
      channelId: json['channelId'] as String?,
    );