TtfxSubString constructor

TtfxSubString({
  1. int flags = 0,
  2. int offset = 0,
  3. int length = 0,
  4. int lineIndex = 0,
  5. int clusterIndex = 0,
  6. SdlxRect? rect,
})

Implementation

TtfxSubString({
  this.flags = 0,
  this.offset = 0,
  this.length = 0,
  this.lineIndex = 0,
  this.clusterIndex = 0,
  SdlxRect? rect,
}) {
  this.rect = rect ?? SdlxRect();
}