TextButtonMedia constructor

const TextButtonMedia({
  1. Key? key,
  2. String? label,
  3. Color? background,
  4. Color? labelColor,
  5. void onPressed()?,
})

Implementation

const TextButtonMedia({
  Key? key,
  this.label,
  this.background,
  this.labelColor,
  this.onPressed,
}) : super(key: key);