NullableReflectSubObject constructor

const NullableReflectSubObject({
  1. String value = "something",
  2. int anotherValue = 42,
})

Implementation

const NullableReflectSubObject({
  this.value = "something",
  this.anotherValue = 42,
});