InvoiceSentEvent.fromJson constructor
InvoiceSentEvent.fromJson(
- Object? json
Implementation
factory InvoiceSentEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return InvoiceSentEvent(object: Invoice.fromJson(map['object']));
}