JiraExpressionsComplexityValueBean.fromJson constructor

JiraExpressionsComplexityValueBean.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory JiraExpressionsComplexityValueBean.fromJson(
    Map<String, Object?> json) {
  return JiraExpressionsComplexityValueBean(
    limit: (json[r'limit'] as num?)?.toInt() ?? 0,
    value: (json[r'value'] as num?)?.toInt() ?? 0,
  );
}