is_dot_all property

bool? get is_dot_all

Implementation

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

Implementation

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