CopyPageRequestDestination.fromJson constructor
Implementation
factory CopyPageRequestDestination.fromJson(Map<String, Object?> json) {
return CopyPageRequestDestination(
type: CopyPageRequestDestinationType.fromValue(
json[r'type'] as String? ?? ''),
value: json[r'value'] as String? ?? '',
);
}