words property

List<String> get words

default:

Implementation

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

Implementation

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