DbInboundGroupSessionBundle.fromJson constructor

DbInboundGroupSessionBundle.fromJson(
  1. Map json
)

Implementation

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