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