FastPadding8 constructor

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

Implementation

const FastPadding8({
  Key? key,
  required Widget child,
  EdgeInsets padding = kFastEdgeInsets8,
}) : super(
        key: key,
        child: child,
        padding: padding,
      );