build method

  1. @override
View? build()
override

Builds this component's renderable output.

App code can return a node, another component, text, or an iterable of renderable values. The renderer normalizes the value internally.

Implementation

@override
View build() {
  return Container(
    props: {...props, 'id': _mountId},
    className: className,
    dartStyle: dartStyle,
    children: const [],
  );
}