getNullableProperty<T> abstract method

Property<T?> getNullableProperty<T>(
  1. String name,
  2. T converter(
    1. String s
    ),
  3. T? defaultValue(), {
  4. bool isImmutable = true,
})

Implementation

Property<T?> getNullableProperty<T>(
  String name,
  T Function(String s) converter,
  T? Function() defaultValue, {
  bool isImmutable = true,
});