updateFile property

UpdateFile? updateFile

Information about a file was updated

Implementation

UpdateFile? get updateFile {
  if (this is UpdateFile) {
    return this as UpdateFile;
  }
  return null;
}