dispose method

Future<void> dispose()
override

Implementation

Future<void> dispose() async {
  await Future.forEach(_analyticList, (BaseAnalytics analyticPlatform) async {
    await analyticPlatform.dispose();
  });
}