Title constructor

Title({
  1. required String iso31661,
  2. required String title,
  3. required String type,
})

Implementation

Title({
  required this.iso31661,
  required this.title,
  required this.type,
});