of static method

TimelineAppSkin of(
  1. BuildContext context
)
override

Implementation

static TimelineAppSkin of(BuildContext context) {
  TimelineAppSkin? skin =
      context.dependOnInheritedWidgetOfExactType<TimelineAppSkin>();
  skin!._init();
  return skin;
}