teamIconUrl property

String? teamIconUrl

Returns url to team icon

Implementation

String? get teamIconUrl {
  if (iconHash != null) {
    return "https://cdn.${Constants.cdnHost}/team-icons/${this.id.toString()}/${this.iconHash}.png";
  }

  return null;
}