new_caption property

FormattedText get new_caption

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

Implementation

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

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

Implementation

set new_caption(FormattedText value) {
  rawData["new_caption"] = value.toJson();
}