ServicePointId constructor

ServicePointId({
  1. TransportServiceProvider? provider,
  2. 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;
}