wrap method

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

Wraps child in a M3EResolvedTheme with this data.

Implementation

@override
/// Wraps [child] in a [M3EResolvedTheme] with this [data].
Widget wrap(BuildContext context, Widget child) {
  return M3EResolvedTheme(data: data, child: child);
}