AttributeOption.fromJson constructor

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

Implementation

factory AttributeOption.fromJson(Map<String, dynamic> jsonData) {
  return AttributeOption(
      id: jsonData['id'],
      name: jsonData['name'],
      code: jsonData['code'],
      programTrackedEntityAttribute:
          jsonData['programTrackedEntityAttribute'],
      attribute: jsonData['attribute'],
      dirty: jsonData['dirty']);
}