width method

Widget width(
  1. double value
)

Implementation

Widget width(double value) {
  return SizedBox(
    width: value,
    child: this,
  );
}