of static method

Get context-aware color scheme from BuildContext

Implementation

static FlyColorScheme of(BuildContext context) {
  final brightness = Theme.of(context).brightness;
  return FlyColorScheme(isLight: brightness == Brightness.light);
}