copyWith method
Implementation
NotificationInfo copyWith(
{int? notificationInfoSid,
String? userid,
String? fcmtoken,
String? mobileDevice}) {
return NotificationInfo(
notificationInfoSid: notificationInfoSid ?? this.notificationInfoSid,
userid: userid ?? this.userid,
fcmtoken: fcmtoken ?? this.fcmtoken,
mobileDevice: mobileDevice ?? this.mobileDevice);
}