inputFileRemote property

InputFileRemote? inputFileRemote

A file defined by its remote identifier. The remote identifier is guaranteed to be usable only if the corresponding file is still accessible to the user and known to TDLib.

Implementation

InputFileRemote? get inputFileRemote {
  if (this is InputFileRemote) {
    return this as InputFileRemote;
  }
  return null;
}