TradeLicense constructor

const TradeLicense({
  1. required String type,
  2. required String license,
  3. required String legalForm,
  4. required String endDate,
})

Implementation

const TradeLicense({
  required this.type,
  required this.license,
  required this.legalForm,
  required this.endDate
});