remote_file_id property

String? get remote_file_id

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

Implementation

String? get remote_file_id {
  try {
    if (rawData["remote_file_id"] is String == false) {
      return null;
    }
    return rawData["remote_file_id"] as String;
  } catch (e) {
    return null;
  }
}
set remote_file_id (String? value)

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

Implementation

set remote_file_id(String? value) {
  rawData["remote_file_id"] = value;
}