profile_picture property

String? get profile_picture

Implementation

String? get profile_picture {
  try {
    if (rawData["profile_picture"] is String == false) {
      return null;
    }
    return rawData["profile_picture"] as String;
  } catch (e) {
    return null;
  }
}