Name constructor

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

Implementation

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