InvoiceId constructor
InvoiceId({
- String? id,
- InvoiceId_InvoiceType? type,
- 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;
}