setGap static method

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

Implementation

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