stringValue property

String? stringValue

Implementation

String? get stringValue {
  final value = this.value;
  return value is String ? value : null;
}