FastPadding16 constructor

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

Implementation

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