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;
  }
}
set profile_picture (String? value)

Implementation

set profile_picture(String? value) {
  rawData["profile_picture"] = value;
}