InternalNineTileBox constructor

const InternalNineTileBox({
  1. required Image image,
  2. required double tileSize,
  3. required double destTileSize,
  4. Widget? child,
  5. double? width,
  6. double? height,
  7. EdgeInsetsGeometry? padding,
  8. Key? key,
})

Implementation

const InternalNineTileBox({
  required this.image,
  required this.tileSize,
  required this.destTileSize,
  this.child,
  this.width,
  this.height,
  this.padding,
  super.key,
});