CustomPlaceholder constructor

const CustomPlaceholder({
  1. Key? key,
  2. String? text,
  3. double? width,
  4. double? height,
})

Implementation

const CustomPlaceholder({
  super.key,
  this.text,
  this.width,
  this.height,
});