ConfigStreamDeliveryInfo.fromJson constructor
Implementation
factory ConfigStreamDeliveryInfo.fromJson(Map<String, dynamic> json) {
return ConfigStreamDeliveryInfo(
lastErrorCode: json['lastErrorCode'] as String?,
lastErrorMessage: json['lastErrorMessage'] as String?,
lastStatus: (json['lastStatus'] as String?)?.toDeliveryStatus(),
lastStatusChangeTime: timeStampFromJson(json['lastStatusChangeTime']),
);
}