copyWith method

SongUrlDataFreeTrialPrivilege copyWith({
  1. bool? resConsumable,
  2. bool? userConsumable,
})

Implementation

SongUrlDataFreeTrialPrivilege copyWith({
  bool? resConsumable,
  bool? userConsumable,
}) {
  return SongUrlDataFreeTrialPrivilege()
    ..resConsumable = resConsumable ?? this.resConsumable
    ..userConsumable = userConsumable ?? this.userConsumable;
}