abort method
void
abort()
Implementation
void abort() {
if (!this._isAborted!) {
this._isAborted = true;
if (this.onabort != null) {
this.onabort!();
}
}
}
void abort() {
if (!this._isAborted!) {
this._isAborted = true;
if (this.onabort != null) {
this.onabort!();
}
}
}