CInverse constructor

CInverse({
  1. required int x,
  2. required int y,
  3. CFont font = CFont.tss16,
  4. required String content,
  5. CRotation rotation = CRotation.rotation_0,
})

Implementation

CInverse({
  required int x,
  required int y,
  CFont font = CFont.tss16,
  required String content,
  CRotation rotation = CRotation.rotation_0,
}) {
  _x = x;
  _y = y;
  _font = font;
  _content = content;
  _rotation = rotation;
}