toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final group = this.group;
  final groupKey = this.groupKey;
  final labels = this.labels;
  final relationType = this.relationType;
  final roles = this.roles;
  return {
    'displayName': ?displayName,
    'group': ?group,
    'groupKey': ?groupKey,
    'labels': ?labels,
    'relationType': ?relationType,
    'roles': ?roles,
  };
}