User constructor Null safety

const User(
  1. {required String name,
  2. required String description,
  3. String? iconUrl}
)

Implementation

const User({
  required this.name,
  required this.description,
  this.iconUrl
});