SignpostImageRenderSettings constructor

const SignpostImageRenderSettings({
  1. int borderSize = 10,
  2. bool borderRoundCorners = true,
  3. int maxRows = 3,
})

Constructor with optional border size, border round corners and maximum rows

Parameters

  • IN borderSize Border size in pixels
  • IN borderRoundCorners Round corners border
  • IN maxRows Maximum rows of details in the signpost

Implementation

const SignpostImageRenderSettings({
  this.borderSize = 10,
  this.borderRoundCorners = true,
  this.maxRows = 3,
});