CustomBorder constructor

const CustomBorder({
  1. Key? key,
  2. required Widget child,
  3. double? height,
  4. EdgeInsetsGeometry? margin,
})

Implementation

const CustomBorder({Key? key, required this.child, this.height, this.margin,}) : super(key: key);