asString property

String? get asString

Implementation

String? get asString {
  if (value == null) return null;
  if (value is String) return value! as String;
  throw StateError("value is not a string. tag=${tagString(tag)}");
}