FastPadding constructor

const FastPadding({
  1. Key? key,
  2. required Widget child,
  3. required EdgeInsets padding,
})

Implementation

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