asString property

String? get asString

Read-only string view of value. Use value to write.

Implementation

String? get asString {
  _ensureValueAccessor(FdcDataType.string, 'asString');
  return value as String?;
}