toMap static method

Map<String, dynamic> toMap()

Get current configuration as a map (for debugging)

Implementation

static Map<String, dynamic> toMap() {
  return {
    'logLevel': logLevel.toString(),
    'enableRxTracking': enableRxTracking,
    'enableNavigationLogging': enableNavigationLogging,
    'enableRouteLogging': enableRouteLogging,
    'verboseErrors': verboseErrors,
    'enablePerformanceMetrics': enablePerformanceMetrics,
    'strictMode': strictMode,
    'shouldLogRoutes': shouldLogRoutes,
    'shouldLogNavigation': shouldLogNavigation,
  };
}