Entity constructor

Entity({
  1. EntityType? type,
  2. DateTimeGranularity? dateTimeGranularity,
  3. double? dateTime,
  4. String? airlineCode,
  5. String? flightNumber,
  6. String? unnormalizedCurrency,
  7. int? integerPart,
  8. int? fractionalPart,
  9. ParcelTrackingCarrier? parcelCarrier,
  10. String? parcelTrackingNumber,
  11. String? countryCode,
  12. String? iban,
  13. String? isbn,
  14. PaymentCardNetwork? paymentCardNetwork,
  15. String? paymentCardNumber,
})

Implementation

Entity(
    {this.type,
    this.dateTimeGranularity,
    this.dateTime,
    this.airlineCode,
    this.flightNumber,
    this.unnormalizedCurrency,
    this.integerPart,
    this.fractionalPart,
    this.parcelCarrier,
    this.parcelTrackingNumber,
    this.countryCode,
    this.iban,
    this.isbn,
    this.paymentCardNetwork,
    this.paymentCardNumber});