verticalSpace property

SizedBox get verticalSpace

Returns a SizedBox widget with the height set to this number.

Example: 100.verticalSpace -> SizedBox(height: 100.0).

Implementation

SizedBox get verticalSpace => SizedBox(height: toDouble());