of static method

Implementation

static FlutterFlowTheme of(BuildContext context) {
  return Theme.of(context).brightness == Brightness.dark
      ? DarkModeTheme()
      : LightModeTheme();
}