toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoDelete = this.autoDelete;
  final customImage = this.customImage;
  final deviceName = this.deviceName;
  final instantiateFrom = this.instantiateFrom;
  return {
    'autoDelete': ?autoDelete,
    'customImage': ?customImage,
    'deviceName': ?deviceName,
    'instantiateFrom': ?instantiateFrom,
  };
}