CustomTile constructor

CustomTile(
  1. {Widget? child,
  2. bool? onWhiteBackground,
  3. Color? color,
  4. double? borderRadius,
  5. Function? onClick}
)

Implementation

CustomTile({
  this.child,
  this.onWhiteBackground,
  this.color,
  this.borderRadius,
  this.onClick,
});