rightLabel property

Widget get rightLabel

Implementation

Widget get rightLabel => widget.rightLabel?.isNotEmpty == true
    ? Padding(
        padding: const EdgeInsets.only(right: 16),
        child: Text(widget.rightLabel!, style: labelTextStyle),
      )
    : Container();