JqlQueryOrderByClauseElement.fromJson constructor
Implementation
factory JqlQueryOrderByClauseElement.fromJson(Map<String, Object?> json) {
return JqlQueryOrderByClauseElement(
direction: json[r'direction'] != null
? JqlQueryOrderByClauseElementDirection.fromValue(
json[r'direction']! as String)
: null,
field: JqlQueryField.fromJson(
json[r'field'] as Map<String, Object?>? ?? const {}),
);
}