Card constructor

Card({
  1. Key? key,
  2. double? elevation,
  3. dynamic borderRadius,
  4. SduiNode? child,
})

Implementation

Card({Key? key, this.elevation, this.borderRadius, this.child})
  : super(key: key);