features property

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

Implementation

List<ChatBoostLevelFeatures> get features {
  try {
    if (rawData["features"] is List == false) {
      return [];
    }
    return (rawData["features"] as List).map((e) => ChatBoostLevelFeatures(e as Map)).toList().cast<ChatBoostLevelFeatures>();
  } catch (e) {
    return [];
  }
}
set features (List<ChatBoostLevelFeatures> values)

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

Implementation

set features(List<ChatBoostLevelFeatures> values) {
  rawData["features"] = values.map((value) => value.toJson()).toList();
}