theme property

ColorScheme get theme

Implementation

static ColorScheme get theme {
  final context = navigatorKey.currentContext;
  if (context == null) {
    throw Exception('Navigator context is not available');
  }
  return Theme.of(context).colorScheme;
}