FileWriter class - dart:html library (original) (raw)

Inheritance

Annotations

Properties

errorDomException?

no setter

hashCodeint

The hash code for this object.

no setterinherited

lengthint?

no setter

onEvents

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

no setterinherited

onAbortStream<ProgressEvent>

Stream of abort events handled by this FileWriter.

no setter

onErrorStream<Event>

Stream of error events handled by this FileWriter.

no setter

onProgressStream<ProgressEvent>

Stream of progress events handled by this FileWriter.

no setter

onWriteStream<ProgressEvent>

Stream of write events handled by this FileWriter.

no setter

onWriteEndStream<ProgressEvent>

Stream of writeend events handled by this FileWriter.

no setter

onWriteStartStream<ProgressEvent>

Stream of writestart events handled by this FileWriter.

no setter

positionint?

no setter

readyStateint?

no setter

runtimeTypeType

A representation of the runtime type of the object.

no setterinherited

Methods

abort()→ void

addEventListener(String type, EventListener? listener, [bool? useCapture])→ void

inherited

dispatchEvent(Event event)→ bool

inherited

noSuchMethod(Invocation invocation)→ dynamic

Invoked when a nonexistent method or property is accessed.

inherited

removeEventListener(String type, EventListener? listener, [bool? useCapture])→ void

inherited

seek(int position)→ void

toString()→ String

A string representation of this object.

inherited

truncate(int size)→ void

write(Blob data)→ void

Operators

operator ==(Object other)→ bool

The equality operator.

inherited

Constants

abortEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose abort events to event handlers that are not necessarily instances of FileWriter.

DONE → const int

errorEvent → const EventStreamProvider<Event>

Static factory designed to expose error events to event handlers that are not necessarily instances of FileWriter.

INIT → const int

progressEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose progress events to event handlers that are not necessarily instances of FileWriter.

writeEndEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose writeend events to event handlers that are not necessarily instances of FileWriter.

writeEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose write events to event handlers that are not necessarily instances of FileWriter.

writeStartEvent → const EventStreamProvider<ProgressEvent>

Static factory designed to expose writestart events to event handlers that are not necessarily instances of FileWriter.

WRITING → const int