getNullableStringProperty method

Property<String?> getNullableStringProperty(
  1. String name, {
  2. String? defaultValue() = defaultNullableString,
  3. bool isImmutable = true,
})

Implementation

Property<String?> getNullableStringProperty(
  String name, {
  String? Function() defaultValue = defaultNullableString,
  bool isImmutable = true,
}) {
  return getNullableProperty(
    name,
    convertToString,
    defaultValue,
    isImmutable: isImmutable,
  );
}