copyWith method

SamlProvider copyWith({
  1. String? url,
})

Implementation

SamlProvider copyWith({
  String? url,
}) {
  return SamlProvider(
    url: url ?? this.url,
  );
}