copyWith method

  1. @override
DeviceTokenApplePushVoIP copyWith({
  1. String? deviceToken,
  2. bool? isAppSandbox,
  3. bool? encrypt,
})
override

Implementation

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