keys property

List<String> get keys

Generate By General Universe Script Dont edit by hand or anything manual

default:

Implementation

List<String> get keys {
  try {
    if (rawData["keys"] is List == false) {
      return [];
    }
    return (rawData["keys"] as List).cast<String>();
  } catch (e) {
    return [];
  }
}
set keys (List<String> value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set keys(List<String> value) {
  rawData["keys"] = value;
}