MaterialTip constructor

const MaterialTip({
  1. Key? key,
  2. String? message,
  3. Widget? child,
})

Implementation

const MaterialTip({
  super.key,
  this.message,
  this.child,
});