import 'package:aves_report/aves_report.dart'; import 'package:flutter/foundation.dart'; class FakeReportService extends ReportService { @override Future init() => SynchronousFuture(null); @override Map get state => {}; @override Future setCollectionEnabled(bool enabled) => SynchronousFuture(null); @override Future log(String message) => SynchronousFuture(null); @override Future setCustomKey(String key, Object value) => SynchronousFuture(null); @override Future setCustomKeys(Map map) => SynchronousFuture(null); @override Future recordError(dynamic exception, StackTrace? stack) => SynchronousFuture(null); @override Future recordFlutterError(FlutterErrorDetails flutterErrorDetails) => SynchronousFuture(null); }