IconButtonMedia constructor

const IconButtonMedia({
  1. Key? key,
  2. dynamic icon,
  3. void onPressed()?,
  4. double? size,
})

Implementation

const IconButtonMedia({
  Key? key,
  this.icon,
  this.onPressed,
  this.size,
}) : super(key: key);