LastPickTileTheme constructor

const LastPickTileTheme({
  1. bool visible = true,
  2. String title = "Last Pick",
  3. Icon icon = const Icon(Icons.check),
})

Implementation

const LastPickTileTheme({
  this.visible = true,
  this.title = "Last Pick",
  this.icon = const Icon(Icons.check),
});