DataSetSectionGreyedField.fromJson constructor

DataSetSectionGreyedField.fromJson(
  1. Map<String, dynamic> jsonData
)

Implementation

factory DataSetSectionGreyedField.fromJson(Map<String, dynamic> jsonData) {
  return DataSetSectionGreyedField(
      id: '${jsonData['dataSetSection']}_${jsonData['id']}',
      dirty: jsonData['dirty'],
      dimensionItem: jsonData['dimensionItem'],
      dataSetSection: jsonData['dataSetSection'],
      created: jsonData['created'],
      lastUpdated: jsonData['lastUpdated']);
}