Person constructor

const Person({
  1. required String name,
  2. String? subtitle,
})

Implementation

const Person({required this.name, this.subtitle});