InvoiceSetupStatus.fromJson constructor
Implementation
factory InvoiceSetupStatus.fromJson(Map<String, dynamic> j) => InvoiceSetupStatus(
ready: _pflicht<bool>(j, 'ready'),
environment: _text(j, 'environment') == 'test' ? 'test' : 'live',
missing: [for (final m in _liste(j, 'missing')) InvoiceSetupGap.fromJson(m)],
);