getProperty<T> abstract method

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

Implementation

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