reaction_effect_ids property

List<num> get reaction_effect_ids

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

default:

Implementation

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

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

Implementation

set reaction_effect_ids(List<num> value) {
  rawData["reaction_effect_ids"] = value;
}