Permissions.fromJson constructor

Permissions.fromJson(
  1. dynamic json
)

Implementation

Permissions.fromJson(dynamic json) {
  _subscribe = json['subscribe'];
  _stats = json['stats'];
  _publish = json['publish'];
  _record = json['record'];
  _controlhandlers = json['controlhandlers'];
}