widget property

Widget widget

Implementation

Widget get widget {
  if (this == null) {
    return const SizedBox(height: 0, width: 0);
  } else {
    return this!._widget;
  }
}