SurfaceProps constructor

const SurfaceProps({
  1. required Widget child,
  2. EdgeInsets? padding,
  3. double? radius,
  4. int elevation = 1,
  5. String? color,
  6. bool border = true,
})

Implementation

const SurfaceProps({
  required this.child,
  this.padding,
  this.radius,
  this.elevation = 1,
  this.color,
  this.border = true,
});