copyWith method

JsonContextVariable copyWith({
  1. String? type,
  2. Map<String, dynamic>? value,
})

Implementation

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