copyWith method

Implementation

LicensedApplication copyWith({String? id, LicensedApplicationPlan? plan}) {
  return LicensedApplication(
    id: id ?? this.id,
    plan: plan ?? this.plan,
  );
}