InvoiceId constructor

InvoiceId({
  1. String? id,
  2. InvoiceId_InvoiceType? type,
  3. bool? isDraft,
})

Implementation

factory InvoiceId({
  $core.String? id,
  InvoiceId_InvoiceType? type,
  $core.bool? isDraft,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (type != null) result.type = type;
  if (isDraft != null) result.isDraft = isDraft;
  return result;
}