toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bootDiskOnly = this.bootDiskOnly;
  final diskExclusionLabels = this.diskExclusionLabels;
  final guestFlush = this.guestFlush;
  return {
    'bootDiskOnly': ?bootDiskOnly,
    'diskExclusionLabels': ?diskExclusionLabels,
    'guestFlush': ?guestFlush,
  };
}