copyWith method

Attribution copyWith({
  1. String? provider,
  2. String? providerUri,
})

Implementation

Attribution copyWith({String? provider, String? providerUri}) {
  return Attribution(
    provider: provider ?? this.provider,
    providerUri: providerUri ?? this.providerUri,
  );
}