VxTwoColumn constructor

const VxTwoColumn({
  1. Key? key,
  2. required Widget top,
  3. required Widget bottom,
})

Implementation

const VxTwoColumn({Key? key, required this.top, required this.bottom})
    : super(key: key);