InsideCard constructor

const InsideCard({
  1. double? width = 50.0,
  2. double? height = 50.0,
  3. Color? background = Colors.white,
  4. double? elevation = 12.0,
  5. Color? elevationShadowColor,
  6. double? borderWidth = 0,
  7. Color? borderColor = Colors.transparent,
  8. double? allSideRadius = 0,
  9. IndividualRadius? individualSideRadius,
  10. double? paddingHorizontal = 0,
  11. double? paddingVertical = 0,
})

Implementation

const InsideCard(
    {this.width = 50.0,
    this.height = 50.0,
    this.background = Colors.white,
    this.elevation = 12.0,
    this.elevationShadowColor,
    this.borderWidth = 0,
    this.borderColor = Colors.transparent,
    this.allSideRadius = 0,
    this.individualSideRadius,
    this.paddingHorizontal = 0,
    this.paddingVertical = 0});