Lead constructor

const Lead({
  1. required String name,
  2. required String email,
  3. String message = '',
  4. DateTime? createdAt,
})

Implementation

const Lead({
  required this.name,
  required this.email,
  this.message = '',
  this.createdAt,
});