copyWith method
Implementation
JsonContextVariable copyWith({String? type, Map<String, dynamic>? value}) {
return JsonContextVariable(
type: type ?? this.type,
value: value ?? this.value,
);
}
JsonContextVariable copyWith({String? type, Map<String, dynamic>? value}) {
return JsonContextVariable(
type: type ?? this.type,
value: value ?? this.value,
);
}