spacing method

dynamic spacing({
  1. required double width,
})

Implementation

spacing({required double width}) {
  return SizedBox(width: width);
}