toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final destination = this.destination;
  final pasteOrientation = this.pasteOrientation;
  final pasteType = this.pasteType;
  final source = this.source;
  return {
    'destination': ?destination,
    'pasteOrientation': ?pasteOrientation,
    'pasteType': ?pasteType,
    'source': ?source,
  };
}