InternalLinkTypeInvoice.fromJson constructor

InternalLinkTypeInvoice.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory InternalLinkTypeInvoice.fromJson(Map<String, dynamic> json) =>
    InternalLinkTypeInvoice(
      invoiceName: json['invoice_name'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );