toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final intent = this.intent;
  final name = this.name;
  final propertyChanges = this.propertyChanges;
  final terraformInfo = this.terraformInfo;
  return {
    'intent': ?intent,
    'name': ?name,
    'propertyChanges': ?propertyChanges,
    'terraformInfo': ?terraformInfo,
  };
}