toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    if (requirementType != null) 'requirement_type': requirementType,
    if (status != null) 'status': status,
    if (flowOrder != null) 'flow_order': flowOrder,
  };
}