BorderPane constructor

const BorderPane({
  1. Key? key,
  2. String? title,
  3. TextStyle? titleStyle,
  4. EdgeInsetsGeometry titlePadding = EdgeInsets.zero,
  5. TextDirection? textDirection,
  6. Color borderColor = const Color(0xff000000),
  7. double borderThickness = 1,
  8. BorderRadiusGeometry borderRadius = BorderRadius.zero,
  9. Color? backgroundColor,
  10. double inset = 0,
  11. required Widget child,
})

Implementation

const BorderPane({
  Key? key,
  this.title,
  this.titleStyle,
  this.titlePadding = EdgeInsets.zero,
  this.textDirection,
  this.borderColor = const Color(0xff000000),
  this.borderThickness = 1,
  this.borderRadius = BorderRadius.zero,
  this.backgroundColor,
  this.inset = 0,
  required this.child,
})  : super(key: key);