copyWith method

CustomContextVariable copyWith({
  1. String? type,
})

Implementation

CustomContextVariable copyWith({String? type}) {
  return CustomContextVariable(
    type: type ?? this.type,
  );
}