build method

  1. @override
Component build()
override

Builds the component's content.

Implementation

@override
Component build() {
  if (child != null) return child!;
  if (label != null) return Text(label!);
  return Empty();
}