copyWith method
Implementation
Plans copyWith({ String? planId,
Duration? planDuration,
Duration? sandBoxDuration,
}) => Plans( planId: planId ?? _planId,
planDuration: planDuration ?? _planDuration,
sandBoxDuration: sandBoxDuration ?? _sandBoxDuration,
);