comparable method

String comparable(
  1. String? title
)

Implementation

String comparable(String? title) => title == null ? '?' : title.toLowerCase();