only method

Padding only({
  1. XSpaces? left,
  2. XSpaces? top,
  3. XSpaces? right,
  4. XSpaces? bottom,
  5. Widget? child,
})

Implementation

Padding only({
  final XSpaces? left,
  final XSpaces? top,
  final XSpaces? right,
  final XSpaces? bottom,
  final Widget? child,
}) =>
    Padding(
      padding: _edgeInsets.only(
        left: left,
        top: top,
        right: right,
        bottom: bottom,
      ),
      child: child,
    );