wrap method

  1. @override
Widget wrap(
  1. BuildContext context,
  2. Widget child
)
override

Wraps the given child with a CarouselViewTheme containing the data.

Implementation

@override
Widget wrap(BuildContext context, Widget child) {
  return CarouselViewTheme(data: data, child: child);
}