IconPlaceholder constructor

const IconPlaceholder({
  1. Key? key,
  2. double? size = 24,
})

Creates an IconPlaceholder widget.

Parameters:

  • size: The size of the placeholder in logical pixels (default is 24).

Implementation

const IconPlaceholder({
  super.key,
  this.size = 24,
});