keywords property

List<String> get keywords

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

default:

Implementation

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

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

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