NullableReflectCollectionsModel constructor

const NullableReflectCollectionsModel({
  1. List<String?> aListOfNullableStrings = const <String?>[],
  2. Set<String?> aSetOfNullableStrings = const <String?>{},
  3. List<NullableReflectSubObject?> aListOfNullableSubObjects = const <NullableReflectSubObject?>[],
  4. Set<NullableReflectSubObject?> aSetOfNullableSubObjects = const <NullableReflectSubObject?>{},
  5. Map<String, String?> aMapOfStringToNullableString = const <String, String?>{},
  6. Map<String, NullableReflectSubObject?> aMapOfStringToNullableSubObject = const <String, NullableReflectSubObject?>{},
})

Implementation

const NullableReflectCollectionsModel({
  this.aListOfNullableStrings = const <String?>[],
  this.aSetOfNullableStrings = const <String?>{},
  this.aListOfNullableSubObjects = const <NullableReflectSubObject?>[],
  this.aSetOfNullableSubObjects = const <NullableReflectSubObject?>{},
  this.aMapOfStringToNullableString = const <String, String?>{},
  this.aMapOfStringToNullableSubObject =
      const <String, NullableReflectSubObject?>{},
});