DbInboundGroupSessionBundle.fromJson constructor
      
      DbInboundGroupSessionBundle.fromJson(
    
    
- Map json
Implementation
factory DbInboundGroupSessionBundle.fromJson(Map<dynamic, dynamic> json) =>
    DbInboundGroupSessionBundle(
      dbSession:
          StoredInboundGroupSession.fromJson(Map.from(json['dbSession'])),
      verified: json['verified'],
    );