likeText function

String likeText(
  1. int? no
)

Implementation

String likeText(int? no) => no == null || no == 0 ? '' : ' ($no)';