close method

void close()

Close or stop opening the media file.

Implementation

void close() {
  if (!disposed) {
    _source = null;
    if (id.value != null &&
        (playbackState.value != PlaybackState.closed || loading.value)) {
      _methodChannel.invokeMethod('close', id.value);
      _close();
    }
    loading.value = false;
  }
}