C2Placeholder constructor

const C2Placeholder({
  1. Key? key,
  2. required String message,
  3. TextStyle? style,
  4. TextAlign? align,
  5. EdgeInsetsGeometry? padding,
})

Default constructor

Implementation

const C2Placeholder({
  Key? key,
  required this.message,
  this.style,
  this.align,
  this.padding,
}) : super(key: key);