AuthParams constructor

AuthParams({
  1. String? id,
  2. String? label,
  3. String? type,
  4. String? group,
})

Implementation

AuthParams({String? id, String? label, String? type, String? group}) {
  _id = id;
  _label = label;
  _type = type;
  _group = group;
}