EasyLayoutFlexible constructor

const EasyLayoutFlexible({
  1. Key? key,
  2. int? flex,
  3. required Widget child,
})

Implementation

const EasyLayoutFlexible({
  Key? key,
  this.flex,
  required this.child,
}) : super(key: key);