buildRight method

Widget buildRight()

Implementation

Widget buildRight() {
  return Row(
    children: <Widget>[
      value != null
          ? Text(value!,
              style: TextStyle(
                  fontSize: Style.cellFontSize,
                  color: (title != null || customTitle != null)
                      ? Style.cellValueColor
                      : Style.cellTextColor))
          : Container(),
      isLink
          ? Icon(getLinkIcon(),
              color: Style.cellRightIconColor, size: Style.cellIconSize)
          : Container(),
      customRight != null ? customRight ?? Container() : Container(),
    ],
  );
}