Notify constructor

Notify({
  1. int? time,
  2. String? atSign,
  3. String? message,
})

Implementation

Notify({
  this.time,
  this.atSign,
  this.message,
});