replaceStyleString function

  1. @Deprecated('Use replaceStyleStringWithSize instead')
String replaceStyleString(
  1. String s,
  2. double width,
  3. double height
)

Implementation

@Deprecated('Use replaceStyleStringWithSize instead')
String replaceStyleString(
  String s,
  double width,
  double height,
) {
  return replaceStyleStringWithSize(
    s,
    width: width,
    height: height,
    isMobile: true,
  );
}