toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final excludeBootVolume = this.excludeBootVolume;
  final noReboot = this.noReboot;
  return {
    if (excludeBootVolume != null) 'ExcludeBootVolume': excludeBootVolume,
    if (noReboot != null) 'NoReboot': noReboot,
  };
}