pictureUrlSmall property

String? pictureUrlSmall

URL of current authorized user's small profile image.

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

Implementation

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