toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (autoprovisioned != null) 'autoprovisioned': autoprovisioned!,
  if (enabled != null) 'enabled': enabled!,
  if (locationPolicy != null) 'locationPolicy': locationPolicy!,
  if (maxNodeCount != null) 'maxNodeCount': maxNodeCount!,
  if (minNodeCount != null) 'minNodeCount': minNodeCount!,
  if (totalMaxNodeCount != null) 'totalMaxNodeCount': totalMaxNodeCount!,
  if (totalMinNodeCount != null) 'totalMinNodeCount': totalMinNodeCount!,
};