formatString static method

SmpR30LineData formatString(
  1. bool width,
  2. bool height,
  3. bool bold,
  4. bool underline,
)

Implementation

static SmpR30LineData formatString(bool width, bool height, bool bold, bool underline) {
  return SmpR30LineData("formatString", arguments: {
    'width': width.toString(),
    'height': height.toString(),
    'bold': bold.toString(),
    'underline': underline.toString()
  });
}