copyWith method

MeshagentEndpointSpec copyWith({
  1. String? identity,
  2. ApiScope? api,
})

Implementation

MeshagentEndpointSpec copyWith({String? identity, ApiScope? api}) {
  return MeshagentEndpointSpec(identity: identity ?? this.identity, api: api ?? this.api);
}