fondeEffectiveFlutterColorScheme function

  1. @riverpod
ColorScheme fondeEffectiveFlutterColorScheme(
  1. Ref ref
)

Provider that obtains the Flutter ColorScheme to be actually applied.

Implementation

@riverpod
ColorScheme fondeEffectiveFlutterColorScheme(Ref ref) {
  final appColorScheme = ref.watch(fondeEffectiveColorSchemeProvider);
  return appColorScheme.toColorScheme();
}