DInkWellView constructor

const DInkWellView({
  1. Key? key,
  2. required Widget child,
  3. void onPressed()?,
  4. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(0)),
  5. Color splashColor = const Color(0xffeeeeee),
  6. Color highlightColor = const Color(0xffeeeeee),
  7. double? width,
  8. double? height,
})

构造函数

Implementation

const DInkWellView({
  super.key,
  required this.child,
  this.onPressed,
  this.borderRadius = const BorderRadius.all(Radius.circular(0)),
  this.splashColor = const Color(0xffeeeeee),
  this.highlightColor = const Color(0xffeeeeee),
  this.width,
  this.height,
});