coverImage property

CdnAsset? coverImage

This application's cover image.

Implementation

CdnAsset? get coverImage => coverImageHash == null
    ? null
    : CdnAsset(
        client: manager.client,
        base: HttpRoute()..appIcons(id: id.toString()),
        hash: coverImageHash!,
      );