Author constructor

Author({
  1. required String name,
  2. required String email,
  3. String? twitter,
})

Implementation

Author({required this.name, required this.email, this.twitter});