createController method
Creates a FTabController.
Overriding managed subclasses should always return controller if it is non-null, e.g. return controller ?? MyController();
Implementation
@override
FTabController createController(TickerProvider vsync, int length) =>
controller ?? .new(length: length, vsync: vsync, index: initial ?? 0, motion: motion ?? const FTabMotion());