BigSmall constructor

const BigSmall({
  1. Key? key,
  2. required Widget big,
  3. required Widget small,
})

Implementation

const BigSmall({super.key, required this.big, required this.small});