stickers property

List<InputSticker> get stickers

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

Implementation

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

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

Implementation

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