spacing method

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

Implementation

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