DropCap constructor

DropCap({
  1. Key? key,
  2. Widget? child,
  3. required double width,
  4. required double height,
})

Implementation

DropCap({
  Key? key,
  this.child,
  required this.width,
  required this.height,
})  : super(key: key);