is_no_timestamps property

bool? get is_no_timestamps

Implementation

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