setBaseDimensions static method
Set custom base dimensions for your design Call this BEFORE init() to set your Figma/design dimensions
Example:
ResponsiveConfig.setBaseDimensions(width: 375, height: 812);
ResponsiveConfig.init(context);
Implementation
static void setBaseDimensions({
required double width,
required double height,
}) {
_baseWidth = width;
_baseHeight = height;
}