RejectSharedDirectoryResult.fromJson constructor

RejectSharedDirectoryResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RejectSharedDirectoryResult.fromJson(Map<String, dynamic> json) {
  return RejectSharedDirectoryResult(
    sharedDirectoryId: json['SharedDirectoryId'] as String?,
  );
}