AuthParams.fromJson constructor

AuthParams.fromJson(
  1. dynamic json
)

Implementation

AuthParams.fromJson(dynamic json) {
  _id = json['id'];
  _label = json['label'];
  _type = json['type'];
  _group = json['group'];
}