toMap method

Map<String, dynamic> toMap()

Converts to a map value

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'AccountRef': accountRef?.toMap(),
    'TaxAmount': taxAmount,
    'TaxInclusiveAmt': taxInclusiveAmt,
    'TaxCodeRef': taxCodeRef?.toMap(),
    'ClassRef': classRef?.toMap(),
    'MarkupInfo': markupInfo?.toMap(),
    'BillableStatus': billableStatus,
    'CustomerRef': customerRef?.toMap(),
  };
}