CellStyle.cell constructor

CellStyle.cell()

Implementation

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