pictureUrlLarge property

String? pictureUrlLarge

URL of current authorized user's large profile image.

null if the user hasn't set a profile image.

Implementation

String? get pictureUrlLarge {
  final url = pictureUrl;
  if (url != null && url != '') {
    return url + '/large';
  }
  return null;
}