of static method

Implementation

static MotionThemeData of(BuildContext context) {
  final MotionTheme? result =
      context.dependOnInheritedWidgetOfExactType<MotionTheme>();
  return result?.data ?? MotionThemeData.dark();
}