RemoveProfilePermissionResponse.fromJson constructor

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

Implementation

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