copyWith method

LicenseMetric copyWith({
  1. String? key,
  2. String? value,
})

Implementation

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