Property constructor

const Property({
  1. required String key,
  2. required BaseInstance instance,
})

Implementation

const Property({
  required this.key,
  required this.instance,
});