toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final existingAssets = this.existingAssets;
  final newAssets = this.newAssets;
  final scope = this.scope;
  return {
    'existingAssets': ?existingAssets,
    'newAssets': ?newAssets,
    'scope': ?scope,
  };
}