close method

Future<void> close()

Implementation

Future<void> close() async {
  for (final source in sources) {
    try {
      await source.close();
    } catch (_) {}
  }
}