configlineSpace static method

Widget configlineSpace({
  1. double height = 0.5,
  2. Color color = CommentColorS.cole5e5e5,
})

Implementation

static Widget configlineSpace(
    {double height = 0.5, Color color = CommentColorS.cole5e5e5}) {
  if (color == CommentColorS.cole5e5e5) {
    color = CommentColorS.cole5e5e5;
  }

  return Container(height: height, color: color);
}