DropCap constructor

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

Implementation

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