toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final inviteLinkCount = this.inviteLinkCount;
  final name = this.name;
  final releaseCount = this.releaseCount;
  final testerCount = this.testerCount;
  return {
    'displayName': ?displayName,
    'inviteLinkCount': ?inviteLinkCount,
    'name': ?name,
    'releaseCount': ?releaseCount,
    'testerCount': ?testerCount,
  };
}