spacing method

Widget spacing()

间距

Implementation

Widget spacing() {
  if (this == null) {
    return const SizedBox();
  }
  return SizedBox(width: this!.toDouble());
}