copyWith method

License copyWith({
  1. List<LicensedApplication>? applications,
})

Implementation

License copyWith({List<LicensedApplication>? applications}) {
  return License(
    applications: applications ?? this.applications,
  );
}