w property

double get w

Implementation

double get w {
  if (SizeConfig.screenWidth == 0) {
    throw FlutterError(
        'SizeConfig has not been initialized. Call SizeConfig.init(context) before using it.');
  }
  return SizeConfig.width(toDouble());
}