sticker property

InputFile get sticker

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

Implementation

InputFile get sticker {
  try {
    if (rawData["sticker"] is Map == false) {
      return InputFile({});
    }
    return InputFile(rawData["sticker"] as Map);
  } catch (e) {
    return InputFile({});
  }
}
set sticker (InputFile value)

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

Implementation

set sticker(InputFile value) {
  rawData["sticker"] = value.toJson();
}