is_following property

bool? is_following

Implementation

bool? get is_following {
  try {
    if (rawData["is_following"] is bool == false){
      return null;
    }
    return rawData["is_following"] as bool;
  } catch (e) {
    return null;
  }
}
void is_following=(bool? value)

Implementation

set is_following(bool? value) {
  rawData["is_following"] = value;
}