coalesce method

String coalesce(
  1. String other
)

Implementation

String coalesce(String other) => isNotNullOrEmpty ? value : other;