alsText function

String alsText(
  1. Object? wert, [
  2. String rueckfall = ''
])

Implementation

String alsText(Object? wert, [String rueckfall = '']) =>
    wert is String ? wert : rueckfall;