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