mount method

Widget mount({
  1. required Widget child,
})

Wires the style with the widget tree and makes sure it is accessible from the child or its descendants.

Implementation

Widget mount({required Widget child}) {
  return FirebaseUITheme(
    styles: {this},
    child: child,
  );
}