CellStyle.footer constructor

CellStyle.footer()

Implementation

factory CellStyle.footer() => CellStyle(
      decoration: BoxDecoration(
        color: Colors.lightGreen,
        border: Border(
          bottom: BorderSide(
            color: Colors.grey.withOpacity(0.5),
          ),
          right: BorderSide(
            color: Colors.grey.withOpacity(0.5),
          ),
        ),
      ),
    );