childWidget property

Widget childWidget

Implementation

Widget get childWidget => Universal(
    color: options.color,
    onTap: options.onTap,
    behavior: options.behavior,
    alignment: options.alignment,
    left: options.isStack ? options.left : null,
    top: options.isStack ? options.top : null,
    right: options.isStack ? options.right : null,
    bottom: options.isStack ? options.bottom : null,
    padding: edgeInsets,
    constraints: options.constraints,
    direction: options.direction,
    isScroll: options.isScroll,
    isStack: options.isStack,
    mainAxisSize: options.mainAxisSize,
    mainAxisAlignment: options.mainAxisAlignment,
    crossAxisAlignment: options.crossAxisAlignment,
    child: child,
    children: children);