copyWith method

DeviceTokenApplePush copyWith({
  1. String? deviceToken,
  2. bool? isAppSandbox,
})

Implementation

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