copyWith method

Source$Response copyWith({
  1. String? source,
})

Implementation

Source$Response copyWith({String? source}) {
  return Source$Response(source: source ?? this.source);
}