copyWith method

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

Implementation

Notify copyWith({int? time, String? atSign, String? message}) {
  return Notify(
      time: time ?? this.time,
      atSign: atSign ?? this.atSign,
      message: message ?? this.message);
}