setSize static method

String setSize(
  1. String w,
  2. String h,
  3. String unit
)

Implementation

static String setSize(String w, String h, String unit) {
  return createLine(SIZE, [w + unit, h + unit]);
}