suffix method

String? suffix(
  1. String? suffix
)

Implementation

String? suffix(String? suffix) =>
    (this != null) ? ((suffix != null) ? '${this}${suffix}' : this) : null;