Account constructor

Account({
  1. required String accessToken,
  2. required String accessTokenExpiresAt,
  3. required String avatar,
  4. required bool eligibleForMigration,
  5. required String franchiseInventoryId,
  6. required bool hasMultipleProfiles,
  7. required bool inForcedMigration,
  8. required bool legacy,
  9. required List<String> licenseProductIds,
  10. required String localId,
  11. required MinecraftProfile minecraftProfile,
  12. required bool persistent,
  13. required String remoteId,
  14. required String type,
  15. required List userProperites,
  16. required String username,
})

Implementation

Account({
  required this.accessToken,
  required this.accessTokenExpiresAt,
  required this.avatar,
  required this.eligibleForMigration,
  required this.franchiseInventoryId,
  required this.hasMultipleProfiles,
  required this.inForcedMigration,
  required this.legacy,
  required this.licenseProductIds,
  required this.localId,
  required this.minecraftProfile,
  required this.persistent,
  required this.remoteId,
  required this.type,
  required this.userProperites,
  required this.username,
});