createActiveType<T> function
createActiveType
Short hand helper function to Create a non nullable value An ActiveType can take the nature of any any object type. When an update is done an ActiveStateChanged event is triggered which in-turn makes a UI rebuild of that widget.
Example
late final ActiveType<String> name;
name = createProperty('Bob');
Implementation
ActiveType<T> createActiveType<T>(T value, {String? typeName}) {
return ActiveType<T>(value, typeName: typeName);
}