active_file property

num? get active_file

Implementation

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

Implementation

set active_file(num? value) {
  rawData["active_file"] = value;
}