VxTwoRow constructor

const VxTwoRow({
  1. Key? key,
  2. required Widget left,
  3. required Widget right,
})

Implementation

const VxTwoRow({Key? key, required this.left, required this.right})
    : super(key: key);