JSONProperty constructor

JSONProperty({
  1. required String name,
  2. required Type type,
  3. Function? containerConstructor,
  4. required bool includeNull,
  5. Object? defaultValue = JSONProperty,
})

Implementation

JSONProperty({required this.name, required this.type, this.containerConstructor, required this.includeNull, this.defaultValue = JSONProperty});