copyWith method

  1. @override
NotificationTypeNewCall copyWith({
  1. int? callId,
})
override

Implementation

@override
NotificationTypeNewCall copyWith({
  int? callId,
}) =>
    NotificationTypeNewCall(
      callId: callId ?? this.callId,
    );