only method

  1. @override
T only({
  1. double? top,
  2. double? bottom,
  3. double? start,
  4. double? end,
})
override

Implementation

@override
T only({double? top, double? bottom, double? start, double? end}) {
  return builder(
    SpacingDto.only(top: top, bottom: bottom, start: start, end: end),
  );
}