toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final licenseType = this.licenseType;
  final machinePreferences = this.machinePreferences;
  final persistentDiskType = this.persistentDiskType;
  return {
    'licenseType': ?licenseType,
    'machinePreferences': ?machinePreferences,
    'persistentDiskType': ?persistentDiskType,
  };
}