Types constructor

Types({
  1. int? id,
  2. int? anInt,
  3. bool? aBool,
  4. double? aDouble,
  5. DateTime? aDateTime,
  6. String? aString,
  7. ByteData? aByteData,
})

Implementation

Types({
  this.id,
  this.anInt,
  this.aBool,
  this.aDouble,
  this.aDateTime,
  this.aString,
  this.aByteData,
});