Feeds.fromJson constructor

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

Implementation

Feeds.fromJson(Map<String, dynamic> json) {
  chatId = json['chatId'];
  about = json['about'];
  did = json['did'];
  intent = json['intent'];
  intentSentBy = json['intentSentBy'];
  intentTimestamp = json['intentTimestamp'];
  publicKey = json['publicKey'];
  profilePicture = json['profilePicture'];
  threadhash = json['threadhash'];
  wallets = json['wallets'];
  combinedDID = json['combinedDID'];
  name = json['name'];
  if (json['groupInformation'] != null) {
    groupInformation = GroupDTO.fromJson(json['groupInformation']);
  }
}