cbutton method

Widget cbutton({
  1. Color color = Colors.blue,
})

Implementation

Widget cbutton({Color color = Colors.blue}) {
  return this
      .text(style: TextStyle(color: Colors.white, fontSize: 20))
      .center
      .box(cornerRadius: 4, color: color, height: 45);
}