copyWith method
Implementation
LicenseMetric copyWith({String? key, String? value}) {
return LicenseMetric(
key: key ?? this.key,
value: value ?? this.value,
);
}
LicenseMetric copyWith({String? key, String? value}) {
return LicenseMetric(
key: key ?? this.key,
value: value ?? this.value,
);
}