EmpireListProperty<T> constructor Null safety

EmpireListProperty<T>(
  1. List<T> value,
  2. EmpireViewModel viewModel,
  3. {String? propertyName}
)

Implementation

EmpireListProperty(super.value, super.viewModel, {super.propertyName}) {
  _originalValue = List<T>.from(value);
}