ServicePointId constructor
ServicePointId({
- TransportServiceProvider? provider,
- String? id,
Implementation
factory ServicePointId({
TransportServiceProvider? provider,
$core.String? id,
}) {
final result = create();
if (provider != null) result.provider = provider;
if (id != null) result.id = id;
return result;
}