w method

double w()

Scale width without context

Implementation

double w() {
  if (!ResponsiveConfig.initialized) {
    throw Exception(
        "ResponsiveConfig not initialized. Call ResponsiveConfig.init(context) first.");
  }
  return this * (ResponsiveConfig.width / ResponsiveConfig.baseWidth);
}