toWidget method

  1. @override
Widget toWidget()
override

Get a Flutter widget equivalent object.

Descendants must override it.

Implementation

@override
Widget toWidget() => Stack(
  alignment: alignment,
  clipBehavior: clipBehavior,
  fit: fit,
  textDirection: textDirection,
  children: children.map((e) => e.toWidget()).toList(),
);