GroupChannel.fromJsonAndCached constructor
Implementation
factory GroupChannel.fromJsonAndCached(Map<String, dynamic> json, {int? ts}) {
final channel = _$GroupChannelFromJson(json);
channel.saveToCache();
json.cacheMetaData(channel: channel, ts: ts);
json.cacheDeliveryReceipt(channel);
json.cacheReadReceipt(channel);
return channel;
}