ExportConfigurationsResponse.fromJson constructor

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

Implementation

factory ExportConfigurationsResponse.fromJson(Map<String, dynamic> json) {
  return ExportConfigurationsResponse(
    exportId: json['exportId'] as String?,
  );
}