HubbleRow constructor

const HubbleRow({
  1. Key? key,
  2. MainAxisAlignment? mainAxisAlignment,
  3. CrossAxisAlignment? crossAxisAlignment,
  4. required List<Widget> children,
})

Implementation

const HubbleRow({
  super.key,
  this.mainAxisAlignment,
  this.crossAxisAlignment,
  required this.children,
});