toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (orgID != null) {
    json[r'orgID'] = orgID;
  }
  if (org != null) {
    json[r'org'] = org;
  }
  if (status != null) {
    json[r'status'] = status;
  }
  json[r'flux'] = flux;
  if (description != null) {
    json[r'description'] = description;
  }
  return json;
}