copyWith method

SecuritySchemeId copyWith({
  1. String? id,
})

Implementation

SecuritySchemeId copyWith({String? id}) {
  return SecuritySchemeId(
    id: id ?? this.id,
  );
}