FastPadding12 constructor

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

Implementation

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