wrap method

Widget wrap(
  1. Widget child
)

Wraps a child Widget in the InheritedThemes captured in this object.

Implementation

Widget wrap(Widget child) {
  return _CaptureAll(themes: _themes, child: child);
}