TileModelSprite constructor

TileModelSprite({
  1. required String path,
  2. int row = 0,
  3. int column = 0,
  4. double width = 0,
  5. double height = 0,
})

Implementation

TileModelSprite({
  required this.path,
  this.row = 0,
  this.column = 0,
  this.width = 0,
  this.height = 0,
});