Name constructor

Name({
  1. required String official,
  2. required String common,
})

Implementation

Name({
  required this.official,
  required this.common,
});