Dispose method
Implementation
Future<void> Dispose() async {
if (!this._isDisposed) {
await this._xmlWriter!.Close();
this._isDisposed = true;
}
}
Future<void> Dispose() async {
if (!this._isDisposed) {
await this._xmlWriter!.Close();
this._isDisposed = true;
}
}