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