toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (displayName != null) 'displayName': displayName!,
      if (inviteLinkCount != null) 'inviteLinkCount': inviteLinkCount!,
      if (name != null) 'name': name!,
      if (releaseCount != null) 'releaseCount': releaseCount!,
      if (testerCount != null) 'testerCount': testerCount!,
    };