copyWith method
Implementation
@override
DeviceTokenApplePushVoIP copyWith({
String? deviceToken,
bool? isAppSandbox,
bool? encrypt,
}) =>
DeviceTokenApplePushVoIP(
deviceToken: deviceToken ?? this.deviceToken,
isAppSandbox: isAppSandbox ?? this.isAppSandbox,
encrypt: encrypt ?? this.encrypt,
);